home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / WIN_PRO / DS-1.ZIP;1 / H.ZIP / DPROTO.H < prev    next >
Encoding:
Text File  |  1992-02-10  |  1.1 KB  |  29 lines

  1. /*
  2.  * Temporary prototypes in the absence of system include files.
  3.  */
  4. novalue    _exit        Params((int));
  5. novalue    abort        Params((noargs));
  6. double    atof        Params((char *));
  7. long    atol        Params((char *));
  8. pointer    calloc        Params((unsigned,unsigned));
  9. int    execv        Params((char *, char **));
  10. int    execvp        Params((char *, char **));
  11. novalue    exit        Params((int));
  12. char    *getenv        Params((char *));
  13. char    *getmem        Params((unsigned));
  14. char    *index        Params((char *s, int c));
  15. pointer    malloc        Params((msize));
  16. pointer    realloc        Params((pointer, unsigned));
  17. char    *strchr        Params((char *s, int i));
  18. int    strcmp        Params((char *s1, char *s2));
  19. char    *strcpy        Params((char *s1, char *s2));
  20. char    *strncat    Params((char *s1, char *s2, int n));
  21. int    strncmp        Params((char *s1, char *s2, int n));
  22. char    *strncpy    Params((char *s1, char *s2, int n));
  23. char    *ecvt        Params((double value, int count, int *dec, int* sign));
  24. char    *gcvt        Params((double number,int ndigit,char *buf));
  25. double    pow        Params((double x, double y));
  26. #ifdef SystemFnc
  27. int    system        Params((char *));
  28. #endif                    /* SystemFnc */
  29.